* {
    padding: 0;
    margin: 0;
}


.titleEmpty {
    height: 70px;
}

body {
    background-color: black;
    overflow-x: hidden;
    /* 隐藏横向滚动条 */
    display: flex;
    /* 使用 Flexbox 布局 */
    flex-direction: column;
    /* 使子元素纵向排列 */
}

/* 这个是不是整体的元素 */
.MainPhoto {
    display: flex;
    justify-content: center;
    /* 水平居中对齐 */
    align-items: center;
    /* 垂直居中对齐 */
    margin: 0 auto;
    /* 确保容器在页面中央 */
}

.MainPhoto img {
    box-sizing: border-box;
    padding: 1vh 20vh;
    width: 100%;
    filter: brightness(100%);
}

.Title1 {
    color: aliceblue;
    display: flex;
    justify-content: center;
    margin: 30px 0 10px 0;
}

.TeamIntroduction p {

    color: aliceblue;
}

.TeamIntroduction {
    display: block;
    margin: 5vh 15vh;
    padding: 2vh 0;
    background-color: rgba(89, 89, 89, 0.3);
    backdrop-filter: blur(11.5px);
    -webkit-backdrop-filter: blur(11.5px);
    border: 0.571429px solid rgba(255, 255, 255, 0.18);
    box-shadow: rgba(14, 14, 14, 0.19) 0px 6px 15px 0px;
    -webkit-box-shadow: rgba(14, 14, 14, 0.19) 0px 6px 15px 0px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    color: rgb(128, 128, 128);
}

.Description1 {
    box-sizing: border-box;
    margin: 1vh 5vh;
}

.Title2,
h3 {
    color: #fff;

}


:root {
    --post-spacing: 1.78vw;
    --post-size: 25vw;
    --mask-size: 100vw;
}

.Back img {
    width: 60px;
    height: 60px;


}

.Back {
    position: fixed;
    /* 固定定位 */
    right: 30px;
    /* 右侧对齐到视口边缘 */
    bottom: 30px;
    /* 底部对齐到视口边缘 */
    z-index: 10;
    /* 确保logo在页面其他内容的上方 */

    /* 以下样式根据需要添加 */
    width: 60px;
    /* Logo的宽度 */
    height: auto;
    /* 高度自适应 */
    margin: 10px;
    /* 与视口边缘的距离，防止遮挡滚动条 */
    opacity: 0;
}

html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: #2b46ff;
}